home *** CD-ROM | disk | FTP | other *** search
/ Interplay's Learn to Program Basic (Review Copy) / Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO / pc / ltpbasic / refxmpl / cs01.bas < prev    next >
Encoding:
BASIC Source File  |  1998-04-07  |  83 b   |  6 lines

  1. For x = 1 to 10
  2.   If x < 5 Then Print "<<<<"
  3.   If x > 5 Then Print ">>>>"
  4. Next x
  5.